Fix a typo
authorMatthias Clasen <mclasen@redhat.com>
Mon, 14 Jul 2014 03:04:08 +0000 (23:04 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 14 Jul 2014 03:04:39 +0000 (23:04 -0400)
A getter shouldn't return void.

gtk/gtkadjustment.c

index 0bcb2b7c76af4bed4075fc78559d71850e3d30d7..74541a8843963eb02dd6b890f4eccf9e6b5933f7 100644 (file)
@@ -1012,7 +1012,7 @@ gtk_adjustment_enable_animation (GtkAdjustment *adjustment,
   priv->duration = duration; 
 }
 
-void
+guint
 gtk_adjustment_get_animation_duration (GtkAdjustment *adjustment)
 {
   return adjustment->priv->duration;